fuzzy query processor - traducción al Inglés
Diclib.com
Diccionario ChatGPT
Ingrese una palabra o frase en cualquier idioma 👆
Idioma:

Traducción y análisis de palabras por inteligencia artificial ChatGPT

En esta página puede obtener un análisis detallado de una palabra o frase, producido utilizando la mejor tecnología de inteligencia artificial hasta la fecha:

  • cómo se usa la palabra
  • frecuencia de uso
  • se utiliza con más frecuencia en el habla oral o escrita
  • opciones de traducción
  • ejemplos de uso (varias frases con traducción)
  • etimología

fuzzy query processor - traducción al Inglés

FEATURE TO EFFICIENTLY EXECUTE QUERIES EFFICIENTLY IN DBMS SOFTWARES
Query optimizer; Cost-based query optimizer; Query optimisation; Query planner

fuzzy query processor      
(n.) = procesador de lógica difusa
Ex: This article proposes an architecture and data structures for a fuzzy query processor that uses a high level of abstraction and the data items of the data base records.
processor         
WIKIMEDIA DISAMBIGUATION PAGE
Processor (disambiguation); Processoer
(n.) = procesador
Ex: Alternatively, the librarian may wish to purchase one of the wide range of products that other processors or generators may be stripping from the tape.
----
* corn processor = empresa dedicada al proceso del cereal
* fuzzy query processor = procesador de lógica difusa
* multiprocessor [multi-processor] = multiprocesador
* Text Array Processor (TAP) = Procesador de Matrices de Texto (TAP)
* text processor = procesador de texto
* word processor = procesador de textos
fuzzy         
WIKIMEDIA DISAMBIGUATION PAGE
Fuzzi; Fuzzies; Fuzzie; Fuzzy (disambiguation); Fuzzy (song)
(adj.) = impreciso, poco claro, difuso, vago
Ex: This is a rather fuzzy basis for establishing subject headings, but fuzziness is not the guidelines only fault.
----
* fuzzy clustering = conjuntos de lógica difusa
* fuzzy database = base de datos de lógica difusa
* fuzzy data retrieval = recuperación de información de lógica difusa
* fuzzy IR technique = técnica de recuperación por medio de la lógica difusa
* fuzzy logic = lógica difusa, lógica imprecisa, lógica borrosa
* fuzzy match = búsqueda difusa
* fuzzy matching = búsqueda difusa
* fuzzy model = modelo de lógica difusa
* fuzzy query processor = procesador de lógica difusa
* fuzzy random variable = variable aleatoria de lógica difusa
* fuzzy set = conjunto de lógica difusa
* fuzzy set theory = teoría de conjuntos difusos
* fuzzy system = sistema de lógica difusa
* fuzzy term = término impreciso
* fuzzy-valued = con valores difusos
* random fuzzy set = conjunto aleatorio de lógica difusa
* thresholded fuzzy clustering = ?

Definición

fuzzy subset
In fuzzy logic, a fuzzy subset F of a set S is defined by a "membership function" which gives the degree of membership of each element of S belonging to F.

Wikipedia

Query optimization

Query optimization is a feature of many relational database management systems and other databases such as NoSQL and graph databases. The query optimizer attempts to determine the most efficient way to execute a given query by considering the possible query plans.

Generally, the query optimizer cannot be accessed directly by users: once queries are submitted to the database server, and parsed by the parser, they are then passed to the query optimizer where optimization occurs. However, some database engines allow guiding the query optimizer with hints.

A query is a request for information from a database. It can be as simple as "find the address of a person with Social Security number 123-45-6789," or more complex like "find the average salary of all the employed married men in California between the ages 30 to 39 who earn less than their spouses." The result of a query is generated by processing the rows in a database in a way that yields the requested information. Since database structures are complex, in most cases, and especially for not-very-simple queries, the needed data for a query can be collected from a database by accessing it in different ways, through different data-structures, and in different orders. Each different way typically requires different processing time. Processing times of the same query may have large variance, from a fraction of a second to hours, depending on the chosen method. The purpose of query optimization, which is an automated process, is to find the way to process a given query in minimum time. The large possible variance in time justifies performing query optimization, though finding the exact optimal query plan, among all possibilities, is typically very complex, time-consuming by itself, may be too costly, and often practically impossible. Thus query optimization typically tries to approximate the optimum by comparing several common-sense alternatives to provide in a reasonable time a "good enough" plan which typically does not deviate much from the best possible result.